.z-popup-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 99;
}
.z-detail-license-popup {
    position: fixed;
    width: 800px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: #fff;
    border-radius: 15px;
    z-index: 999;
    overflow-y: scroll;
}
.z-license-popup-title {
    text-align: center;
    color: #f47f02;
    font-size: 20px;
    padding: 20px 0;
    position: relative;
}
.z-license-popup-title::before, .z-license-popup-title::after {
    content: "";
    position: absolute;
    top: 52%;
    height: 2px;
    width: 40%;
}
.z-license-popup-title::before {
    background-image: linear-gradient(270deg,rgba(244,127,2,.42),transparent);
    left: 10px;
}
.z-license-popup-title::after {
    background-image: linear-gradient(90deg,rgba(244,127,2,.42),transparent);
    right: 10px;
}
.z-license-popup-des {
    margin-bottom: 20px;
    padding: 0 20px;
    color: #666;
}
.z-license-popup-des span {
    color: #000;
    font-weight: bold;
}
.z-license-popup-main {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
.z-license-popup-main img {
    width: 100%;
    margin-bottom: 20px;
}
.z-detail-license-popup .btn-close {
    position: absolute;
    top: 20px;
    right: 15px;
    width: 30px;
    height: 30px;
}
.z-detail-license-popup .btn-close img {
    width: 100%;
    height: 100%;
}